home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Read It Later 0.9924 / read_it_later-0.9924-fx.xpi / chrome / globals / ISRILglobals.js
Text File  |  2008-10-18  |  287b  |  21 lines

  1. EXPORTED_SYMBOLS = ["ISRILglobals"]
  2.  
  3. function ISRILglobals()
  4. {
  5.     this.inited = false;
  6.     
  7.     this.adding = false;
  8.     
  9.     this.filter = '';
  10.     
  11.     this.listShowErrorOnOpen = false;
  12. }
  13.  
  14.  
  15. ISRILglobals.prototype = {
  16.     
  17.     _init : function() { },
  18.  
  19. }
  20.  
  21. var ISRILglobals = new ISRILglobals();